home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / wpj1_8.zip / HELLO.ZIP / HELLO.MAK < prev    next >
Text File  |  1993-06-07  |  897b  |  63 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +HELLO.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = Y:\LIB
  9. INCLUDEPATH = Y:\INCLUDE
  10.  
  11. #        *Implicit Rules*
  12. .c.obj:
  13.   $(CC) -c {$< }
  14.  
  15. .cpp.obj:
  16.   $(CC) -c {$< }
  17.  
  18. #        *List Macros*
  19. Link_Exclude =  \
  20.  hello.res
  21.  
  22. Link_Include =  \
  23.   hello.obj\
  24.   hello.def
  25.  
  26. #        *Explicit Rules*
  27. hello.exe: hello.cfg $(Link_Include) $(Link_Exclude)
  28.   $(TLINK) /v/x/c/P-/Twe/L$(LIBPATH) @&&|
  29. c0ws.obj+
  30. hello.obj
  31. hello
  32.         # no map file
  33. cws.lib+
  34. import.lib+
  35. mathws.lib+
  36. cs.lib
  37. hello.def
  38. |
  39.   RC -30 hello.res hello.exe
  40.  
  41.  
  42. #        *Individual File Dependencies*
  43. hello.obj: hello.cfg hello.c 
  44.  
  45. hello.res: hello.cfg hello.rc 
  46.     RC -R -I$(INCLUDEPATH) -FO hello.res HELLO.RC
  47.  
  48. #        *Compiler Configuration File*
  49. hello.cfg: hello.mak
  50.   copy &&|
  51. -v
  52. -W
  53. -vi-
  54. -wpro
  55. -weas
  56. -wpre
  57. -I$(INCLUDEPATH)
  58. -L$(LIBPATH)
  59. -P-.C
  60. | hello.cfg
  61.  
  62.  
  63.